home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / pdc / dasm / readme < prev   
Encoding:
Text File  |  1990-04-19  |  1.5 KB  |  32 lines

  1. 68000 Disassembler:
  2.  
  3.     These files provide a simple 68000 disassembler.  The program "disassem"
  4. will read standard DOS object files, and disassemble the code sections. 
  5. Data sections are dumped in hex, symbol definitions are listed appropriately.
  6. My main interest was in dumping executable files, so I haven't integrated
  7. the symbols with the disassembled code.  The file "convert.c" is the 
  8. procedure which actually converts a single instruction to a text string.  If
  9. you want to disassemble information in memory, or from some other object
  10. file format it should be easy to change the disassem program.  The 
  11. disassembler will convert any valid instruction to text, it will not however
  12. notice all invalid combinations of addressing modes.  Thus, some invalid
  13. instruction codes may be printed as valid.  Main other problem with the
  14. program is that it can't be stopped, needs to notice control C, or the like.
  15. You may copy-change-use this program as you like.
  16.  
  17.                                                    Bill Rogers
  18.                                                    Comp Sci Dept.
  19.                                                    University of WAIKATO
  20.  
  21.  
  22. Note: The control-C problem has been solved by using a Beta 3.04 version
  23. of Lattice C, which has control-C break enabled as the default.
  24.  
  25.                            Fred Fish
  26.  
  27. I have found this disassembler useful on a number of occasions, so it is
  28. included in the PDC Software Distribution release 3.3.  Unfortunately,
  29. it is coded using bitfields so PDC cannot compile it.
  30.  
  31.                                                   Lionel Hummel
  32.